Skip to main content

All Questions

3votes
3answers
518views

How to "program to an interface"

I've read these questions: Understanding "programming to an interface" What is the point of an interface? Does it always make sense to "program to an interface" in Java? I don't ...
rink.attendant.6's user avatar
3votes
3answers
2kviews

Implementing the Interface Segregation Principle

Does this IConvertible interface satisfy the Interface Segregation Principle (ie. the "I" in SOLID)? Here is the definition: public interface IConvertible { TypeCode GetTypeCode(); bool ...
Jacob's user avatar

close